home *** CD-ROM | disk | FTP | other *** search
/ Loadstar 174 / 174.d81 / program 5 (.txt) < prev    next >
Commodore BASIC  |  2022-08-26  |  688b  |  29 lines

  1. 5 rem set printer up for most software    packages that support epson 24-pin
  2. 10 c$=chr$(10)
  3. 20 d$=chr$(27)+chr$(91)+chr$(75)+chr$(2)+chr$(0)+chr$(0)+chr$(31)
  4. 30 s$=d$+"bjlstart"+c$
  5. 40 e$="bjlend"+c$
  6. 50 open4,4,5
  7. 100 print#4,s$;
  8. 110 print#4,"@setcontrolmode=lq"c$;
  9. 120 print#4,e$;
  10. 200 print#4,s$;
  11. 210 print#4,"controlmode=lq"c$;
  12. 220 print#4,"font=roman"c$;
  13. 230 print#4,"pagelength=11"c$;
  14. 240 print#4,"characterset=italic"c$;
  15. 250 print#4,"textscalemode=off"c$;
  16. 260 print#4,"autolf=on"c$;
  17. 270 print#4,"international=usa"c$;
  18. 280 print#4,e$;
  19. 300 print#4,s$;
  20. 310 print#4,"controlmode=common"c$;
  21. 320 print#4,"paperselect=letter"c$;
  22. 330 print#4,"printmode=hq"c$;
  23. 340 print#4,"smoothing=off"c$;
  24. 350 print#4,"reduction=off"c$;
  25. 360 print#4,"autopoweroff=disable"c$;
  26. 370 print#4,"i/d-buffer=input"c$;
  27. 380 print#4,e$
  28. 999 close4
  29.